home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / ctype / toupper.c < prev   
C/C++ Source or Header  |  1988-09-14  |  1KB  |  49 lines

  1. /* 
  2.  * toupper.c --
  3.  *
  4.  *    Contains the C library procedure "toupper".
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: toupper.c,v 1.2 88/09/14 17:18:20 douglis Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include "ctype.h"
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * toupper --
  26.  *
  27.  *    Return the upper-case equivalent of a character.
  28.  *
  29.  * Results:
  30.  *    If c is an lower-case character, then its upper-case equivalent
  31.  *    is returned.  Otherwise c is returned.
  32.  *
  33.  * Side effects:
  34.  *    None.
  35.  *
  36.  *----------------------------------------------------------------------
  37.  */
  38.  
  39. int
  40. toupper(c)
  41.     int c;            /* Character value to convert.  Must be an
  42.                  * ASCII value or EOF. */
  43. {
  44.     if islower(c) {
  45.     return c + 'A' - 'a';
  46.     }
  47.     return c;
  48. }
  49.